home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / name.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  80 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class NAME
  17.    --
  18.    -- Handling of all sort of names you can find in an Eiffel
  19.    -- source file :
  20.    --
  21.    --   CLASS_NAME : a base class name.
  22.    --   FEATURE_NAME (deferred)
  23.    --      INFIX_NAME : infix feature name.
  24.    --      PREFIX_NAME : prefix feature name.
  25.    --      SIMPLE_FEATURE_NAME : ordinary name.
  26.    --      FROZEN_FEATURE_NAME : frozen FEATURE_NAME
  27.    --      PRECURSOR_NAME : for Precursor routines.
  28.    --   LOCAL_ARGUMENT (deferred)
  29.    --      LOCAL_NAME (deferred)
  30.    --         LOCAL_NAME1: in a declaration list.
  31.    --         LOCAL_NAME2: used in an expression.
  32.    --      ARGUMENT_NAME (deferred)
  33.    --         ARGUMENT_NAME1: in a declaration list.
  34.    --         ARGUMENT_NAME2: used in an expression.
  35.    --
  36.  
  37. inherit GLOBALS;
  38.  
  39. feature
  40.  
  41.    start_position: POSITION is
  42.          -- The position of the first character of `to_string' in
  43.          -- the text source.
  44.       deferred
  45.       end;
  46.  
  47.    to_string: STRING is
  48.          -- The corresponding name (alone in a STRING).
  49.       deferred
  50.       ensure
  51.          not Result.is_empty;
  52.          Result = string_aliaser.item(Result)
  53.       end;
  54.  
  55.    pretty_print is
  56.       deferred
  57.       end;
  58.  
  59.    frozen bracketed_pretty_print is
  60.       do
  61.          pretty_print;
  62.       end;
  63.  
  64.    frozen line: INTEGER is
  65.       require
  66.          start_position /= Void
  67.       do
  68.          Result := start_position.line;
  69.       end;
  70.  
  71.    frozen column: INTEGER is
  72.       require
  73.          start_position /= Void
  74.       do
  75.          Result := start_position.column;
  76.       end;
  77.  
  78. end -- NAME
  79.  
  80.